home *** CD-ROM | disk | FTP | other *** search
- package Forms
- {
- import caurina.transitions.Tweener;
- import flash.display.Bitmap;
- import flash.display.MovieClip;
-
- [Embed(source="/_assets/assets.swf", symbol="Forms.BFCutsceneForm")]
- public class BFCutsceneForm extends CluelessBaseForm
- {
-
-
- public var _tBfImages:MovieClip;
-
- public var _mcBackground:MovieClip;
-
- public var _mcModel:Model;
-
- public function BFCutsceneForm()
- {
- super();
- }
-
- public function init(param1:DressupModel) : *
- {
- _mcModel.clone(param1);
- _mcModel.setPose("4");
- _tBfImages.gotoAndStop(param1.PartnerName + "_2");
- _mcBackground.addChild(new Bitmap(MainDocument.BackgroundPackage.getImage(param1.ModelTheme.Background)));
- Tweener.addTween(_tBfImages,{
- "scaleX":1.2,
- "scaleY":1.2,
- "time":1,
- "onComplete":onComplete
- });
- }
-
- protected function onComplete() : void
- {
- setBackButton(this);
- }
- }
- }
-